From 40fb53c16d43275f6e7a24b357469a9945f32803 Mon Sep 17 00:00:00 2001 From: tsteven4 Date: Sun, 27 Jan 2013 23:10:20 +0000 Subject: [PATCH] fix error counting in testo. git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@4269 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/testo | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gpsbabel/testo b/gpsbabel/testo index 6db998124..fa3caedc0 100755 --- a/gpsbabel/testo +++ b/gpsbabel/testo @@ -30,7 +30,7 @@ bincompare() ${OD} $2 >${TMPDIR}/bc2 ${DIFF} ${TMPDIR}/bc1 ${TMPDIR}/bc2 || { echo ERROR binary comparing $* - let errorcount=errorcout+1 + let errorcount=errorcount+1 #exit 1 } } @@ -39,7 +39,7 @@ compare() { ${DIFF} -u -b $* || { echo ERROR comparing $* - let errorcount=errorcout+1 + let errorcount=errorcount+1 #exit 1 } } @@ -56,7 +56,7 @@ gpsbabel() ${PNAME} $* || { echo "$PNAME returned error $?" echo "($PNAME $*)" - let errorcount=errorcout+1 + let errorcount=errorcount+1 #exit 1 } } -- 2.30.2